home *** CD-ROM | disk | FTP | other *** search
- /* p884.c --- bible */
- #include <conio.h>
- char text[] = "Testing insline. Press any key to go on.";
- main()
- {
- int i, nlines = 11;
- window(20, 10, 60, 10 + nlines - 1);
- textbackground(BROWN);
- clrscr();
- textcolor(LIGHTMAGENTA);
- for(i = 1; i <= nlines; i++)
- {
- gotoxy(1, i);
- cputs(text);
- }
- gotoxy(1, nlines / 2);
- for(i = 0; i <= nlines / 2; i++)
- {
- getch();
- insline();
- }
- }